React-Native "react-native run-ios"
NickName:Khadreal Ask DateTime:2018-01-30T20:56:06

React-Native "react-native run-ios"

I installed a fresh react-native app.I keep getting the below error when I ran react-native run-ios

Incorrect hash:

eb7c61ff0c1c55cd85deb3c15f2731c14c787429 ?/Users/johndoe/.rncache/boost_1_63_0.tar.gz

I have tried react-native upgrade, rm -rf node_modules

Still doesn't work.

Copyright Notice:Content Author:「Khadreal」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/48522015/react-native-react-native-run-ios

Answers
Andang Rian Dimas 2018-10-13T08:25:19

try this one:\n\nrm -rf ~/.rncache\n\n\nthen re-run it.\n\nreact-native run-ios\n\n\nif it's still not showing the simulator, then you could try to add --simulator=\"iPhone 6s\"\n\nreact-native run-ios --simulator=\"iPhone 6s\"\n",


Nunchucks 2018-08-14T19:35:00

Run this command to freshen up everything and pray twice facing the north.\n\nwatchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache\n",


mityabeldii 2018-03-20T08:27:32

\nCheck this error using simulator app and real device.\nUpgrade Xcode to currently latest version.\n\n\nOtherwise use create-react-native-app. That way you can run app both device and simulator, which is great case if you don't need to detach your app.",


More about “React-Native "react-native run-ios"” related questions

react-native installation error with npx react-native

I'm trying to install react-native on Windows by entering command $ npx react-native and it shows error You did not pass any commands, run `react-native --help` to see a list of all available comm...

Show Detail

@types/react-native for react-native 0.59.x

I'm using react-native 0.59.9 (can't yet upgrade to 0.60.x because of external blockers). But the @types/react-native only provides type-definitions up to 0.57.65 (as listed in npm). From then on ...

Show Detail

react-native eject not working for react-native 0.60.0

Is react-native eject is not working anymore ? is it completely removed from the react-native? I am using react-native version 0.60.0. I can't even find it in the react-native help. Please check ...

Show Detail

react-native init specify react version and react-native version

I basically want to init a react-native project with [email protected] and [email protected] because dependency problems. However react-native command only allows me to specify react-native version: ...

Show Detail

Should I mention react-native as a dependency for my react-native library?

I'm creating a react-native library that needs some of react-native modules in order to work. Should I mention react-native as a dependency for my project in package.json dependencies? I saw some ...

Show Detail

React-Native with Webhooks?

Is it possible to integrate React-Native with Webhooks? Currently, I have a chatbot using React, Dialogflow and webhooks. I am intending to port over to React-Native. Hence, I like to find out if

Show Detail

Duplicate packages react-native

I have expo react-native project(the main one), and i create a pure react-native project to connect with android and ios sdks. This is why i created react-native-library-bridge. Between this three

Show Detail

Run react-native run-ios and react-native start in one command?

I just upgraded from RN 59 to RN 60.2 and react-native run-ios used to both start the Metro Bundler and then also open the simulator and run the app, no longer does. They now need to be separate co...

Show Detail

react-native run-android and react-native start

Do I have to run react-native run-android and react-native start in my command prompt every time time I reopen my project and emulator? -- Thanks

Show Detail

Compilation problems in react-native

I'm new to using react-native and I'm having some problems running my react-native app. When running my app I get the following error: /node_modules/react-native-sqlcipher-storage/src/android/src/m...

Show Detail